home *** CD-ROM | disk | FTP | other *** search
- unit DbConsts;
-
- interface
-
- resourcestring
- SInvalidFieldSize = 'Invalid field size';
- SInvalidFieldRegistration = 'Invalid field registration';
- SUnknownFieldType = 'Field ''%s'' is of an unknown type';
- SFieldNameMissing = 'Field name missing';
- SDuplicateFieldName = 'Duplicate field name ''%s''';
- SFieldNotFound = '%s: Field ''%s'' not found';
- SFieldAccessError = 'Cannot access field ''%s'' as type %s';
- SFieldValueError = 'Invalid value for field ''%s''';
- SFieldRangeError = '%g is not a valid value for field ''%s''. The allowed range is %g to %g';
- SInvalidIntegerValue = '''%s'' is not a valid integer value for field ''%s''';
- SInvalidBoolValue = '''%s'' is not a valid boolean value for field ''%s''';
- SInvalidFloatValue = '''%s'' is not a valid floating point value for field ''%s''';
- SFieldTypeMismatch = 'Field ''%s'' is not of the expected type';
- SInvalidVarByteArray = 'Invalid variant type or size';
- SFieldOutOfRange = 'Value of field ''%s'' is out of range';
- SBCDOverflow = '(Overflow)';
- SFieldRequired = 'Field ''%s'' must have a value';
- SDataSetMissing = 'Field ''%s'' has no dataset';
- SInvalidCalcType = 'Field ''%s'' cannot be a calculated or lookup field';
- SFieldReadOnly = 'Field ''%s'' cannot be modified';
- SFieldIndexError = 'Field index out of range';
- SNoFieldIndexes = 'No index currently active';
- SNotIndexField = 'Field ''%s'' is not indexed and cannot be modified';
- SIndexFieldMissing = 'Cannot access index field ''%s''';
- SDuplicateIndexName = 'Duplicate index name ''%s''';
- SNoIndexForFields = 'Table ''%s'' has no index for fields ''%s''';
- SCircularDataLink = 'Circular datalinks are not allowed';
- SLookupInfoError = 'Lookup information for field ''%s'' is incomplete';
- SDataSourceChange = 'DataSource cannot be changed';
- SDataSetOpen = 'Cannot perform this operation on an open dataset';
- SNotEditing = 'Dataset not in edit or insert mode';
- SDataSetClosed = 'Cannot perform this operation on a closed dataset';
- SDataSetEmpty = 'Cannot perform this operation on an empty dataset';
- SDataSetReadOnly = 'Cannot modify a read-only dataset';
- STextFalse = 'False';
- STextTrue = 'True';
-
- SFirstRecord = 'First record';
- SPriorRecord = 'Prior record';
- SNextRecord = 'Next record';
- SLastRecord = 'Last record';
- SInsertRecord = 'Insert record';
- SDeleteRecord = 'Delete record';
- SEditRecord = 'Edit record';
- SPostEdit = 'Post edit';
- SCancelEdit = 'Cancel edit';
- SRefreshRecord = 'Refresh data';
- SDeleteRecordQuestion = 'Delete record?';
- SDeleteMultipleRecordsQuestion = 'Delete all selected records?';
- SRecordNotFound = 'Record not found';
- SDataSourceFixed = 'Operation not allowed in a DBCtrlGrid';
- SNotReplicatable = 'Control cannot be used in a DBCtrlGrid';
- SPropDefByLookup = 'Property already defined by lookup field';
- STooManyColumns = 'Grid requested to display more than 256 columns';
-
- SRptLoadFailed = 'Unable to load %s';
- SRptDesignTimeValue = 'SQL Directory';
- SRptRunTimeValue = 'Runtime Directory';
- SRptBindBuffer = 'Data too large for Bind Buffer';
- SRptDataSetNotAvailable = 'Requested DataSets is not Avaliable';
- SRptSharedMemoryError = 'Unable To Create Shared Memory';
- SRptNoDataSetAvailable = 'No DataSets Avaliable';
- SRptInvalidDataSet = 'Invalid DataSet Requested';
- SInvalidServer = 'Invalid Server Type';
- SReportVerb = 'Edit Report...';
- SIncorrectVersion = 'Component requires a later version of ReportSmith';
- SCannotGetVersionInfo = 'Unable to obtain Version details from %s';
- SUnableToLoadAPIDLL = 'Unable to load ReportSmith DLL: %s';
- SNoFile = 'The requested Reportsmith file ''%s'' does not exist';
- SReportFilter = 'Report Files (*.rpt)|*.rpt';
- SNoDataProvider = 'Missing data provider or data packet';
- SAutoSessionExclusive = 'Cannot enable AutoSession property with more than one session on a form or data-module';
- SAutoSessionExists = 'Cannot add a session to the form or data-module while session ''%s'' has AutoSession enabled';
- SAutoSessionActive = 'Cannot modify SessionName while AutoSession is enabled';
- SInvalidDataPacket = 'Invalid data packet';
-
- implementation
-
- end.
-
-